home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
NeXTSTEP 3.1 (Developer) [x86]
/
NeXT Step 3.1 Intel dev.cdr.dmg
/
NextDeveloper
/
Examples
/
AppKit
/
Draw
/
Inspector.h
< prev
next >
Wrap
Text File
|
1992-02-17
|
916b
|
44 lines
@interface Inspector : Object
{
Graphic *selectedGraphic; /* the currently displayed graphic */
GraphicView *graphicView; /* the view selectedGraphic is in */
NXSize lastSize; /* the last size displayed */
Slider *lineWidthSlider;
id lineWidthField;
id arrows;
id width;
id lineColor;
id fillColor;
id filled;
id lineCap;
id lineJoin;
id height;
id formEntry;
}
/* Public methods */
- loadGraphic:(Graphic *)graphic;
- load:(GraphicView *)graphicView;
- initializeGraphic:(Graphic *)graphic;
- preset;
/* Panel delegate method */
- windowDidUpdate:(Window *)sender;
/* Target/Action methods */
- changeContinuous:sender;
- changeArrows:sender;
- changeLineJoin:sender;
- changeLineWidth:sender;
- changeLineCap:sender;
- changeDimensions:sender;
- changeLineColor:sender;
- changeFillColor:sender;
- changeFilled:sender;
- changeFormEntry:sender;
@end